7c8377934c3c433b75ef79c7bc28dddb8cc4b21c,plugins/tasks/tasks-core/src/com/intellij/tasks/impl/httpclient/NewBaseRepositoryImpl.java,NewBaseRepositoryImpl,createCredentialsProvider,#,87

Before Change


      provider.setCredentials(BASIC_AUTH_SCOPE, new UsernamePasswordCredentials(getUsername(), getPassword()));
    }
    // Proxy authentication
    HttpConfigurable.getInstance().setProxyCredentials(provider, isUseProxy());

    return provider;
  }

After Change


      provider.setCredentials(BASIC_AUTH_SCOPE, new UsernamePasswordCredentials(getUsername(), getPassword()));
    }
    // Proxy authentication
    if (isUseProxy()) HttpConfigurable.getInstance().setProxyCredentialsIfEnabled(provider, getUrl());

    return provider;
  }